home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ WMP 9.xpl
< prev
next >
Wrap
Text File
|
2003-08-04
|
1KB
|
47 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH 1"="Program Options\Built in Windows Apps\Windows Media Player"
"UIPATH 2"="Internet\Windows Media Player"
"NAME"="Recent File List Enabled"
"VERSION"="1.01"
"LANGUAGE"="VBScript"
"TEXT 1"="Enable Recent File List"
"DESCRIPTION 1"="Windows Media Player normally adds all played URLs and file to it's recent file list."
"DESCRIPTION 2"="If you do not wish this to happen, disable this setting."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Thanks to CptSiskoX for tip & settings."
sP="HKCU\Software\Microsoft\MediaPlayer\Preferences\AddToMRU" 'bnry=01=enablesending; 00=disablesending
Sub Plugin_Initialize
s=RegReadValue(sP)
if IsEmpty(s) or s="01" then
SetUIElement 1,true
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
if RegValueExists(sP) then Call RegDeleteValue(sP)
else
Call RegWriteValue(sP,"00",3)
end if
End Sub
Sub Plugin_Terminate
End Sub